home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / usr / lib / python2.5 / wsgiref / util.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2008-10-29  |  6KB  |  176 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.5)
  3.  
  4. '''Miscellaneous WSGI-related Utilities'''
  5. import posixpath
  6. __all__ = [
  7.     'FileWrapper',
  8.     'guess_scheme',
  9.     'application_uri',
  10.     'request_uri',
  11.     'shift_path_info',
  12.     'setup_testing_defaults']
  13.  
  14. class FileWrapper:
  15.     '''Wrapper to convert file-like objects to iterables'''
  16.     
  17.     def __init__(self, filelike, blksize = 8192):
  18.         self.filelike = filelike
  19.         self.blksize = blksize
  20.         if hasattr(filelike, 'close'):
  21.             self.close = filelike.close
  22.         
  23.  
  24.     
  25.     def __getitem__(self, key):
  26.         data = self.filelike.read(self.blksize)
  27.         if data:
  28.             return data
  29.         
  30.         raise IndexError
  31.  
  32.     
  33.     def __iter__(self):
  34.         return self
  35.  
  36.     
  37.     def next(self):
  38.         data = self.filelike.read(self.blksize)
  39.         if data:
  40.             return data
  41.         
  42.         raise StopIteration
  43.  
  44.  
  45.  
  46. def guess_scheme(environ):
  47.     """Return a guess for whether 'wsgi.url_scheme' should be 'http' or 'https'
  48.     """
  49.     if environ.get('HTTPS') in ('yes', 'on', '1'):
  50.         return 'https'
  51.     else:
  52.         return 'http'
  53.  
  54.  
  55. def application_uri(environ):
  56.     """Return the application's base URI (no PATH_INFO or QUERY_STRING)"""
  57.     url = environ['wsgi.url_scheme'] + '://'
  58.     quote = quote
  59.     import urllib
  60.     if environ.get('HTTP_HOST'):
  61.         url += environ['HTTP_HOST']
  62.     else:
  63.         url += environ['SERVER_NAME']
  64.         if environ['wsgi.url_scheme'] == 'https':
  65.             if environ['SERVER_PORT'] != '443':
  66.                 url += ':' + environ['SERVER_PORT']
  67.             
  68.         elif environ['SERVER_PORT'] != '80':
  69.             url += ':' + environ['SERVER_PORT']
  70.         
  71.     if not environ.get('SCRIPT_NAME'):
  72.         pass
  73.     url += quote('/')
  74.     return url
  75.  
  76.  
  77. def request_uri(environ, include_query = 1):
  78.     '''Return the full request URI, optionally including the query string'''
  79.     url = application_uri(environ)
  80.     quote = quote
  81.     import urllib
  82.     path_info = quote(environ.get('PATH_INFO', ''))
  83.     if not environ.get('SCRIPT_NAME'):
  84.         url += path_info[1:]
  85.     else:
  86.         url += path_info
  87.     if include_query and environ.get('QUERY_STRING'):
  88.         url += '?' + environ['QUERY_STRING']
  89.     
  90.     return url
  91.  
  92.  
  93. def shift_path_info(environ):
  94.     """Shift a name from PATH_INFO to SCRIPT_NAME, returning it
  95.  
  96.     If there are no remaining path segments in PATH_INFO, return None.
  97.     Note: 'environ' is modified in-place; use a copy if you need to keep
  98.     the original PATH_INFO or SCRIPT_NAME.
  99.  
  100.     Note: when PATH_INFO is just a '/', this returns '' and appends a trailing
  101.     '/' to SCRIPT_NAME, even though empty path segments are normally ignored,
  102.     and SCRIPT_NAME doesn't normally end in a '/'.  This is intentional
  103.     behavior, to ensure that an application can tell the difference between
  104.     '/x' and '/x/' when traversing to objects.
  105.     """
  106.     path_info = environ.get('PATH_INFO', '')
  107.     if not path_info:
  108.         return None
  109.     
  110.     path_parts = path_info.split('/')
  111.     path_parts[1:-1] = _[1]
  112.     name = path_parts[1]
  113.     del path_parts[1]
  114.     script_name = environ.get('SCRIPT_NAME', '')
  115.     script_name = posixpath.normpath(script_name + '/' + name)
  116.     if not name and not script_name.endswith('/'):
  117.         script_name += '/'
  118.     
  119.     environ['SCRIPT_NAME'] = script_name
  120.     environ['PATH_INFO'] = '/'.join(path_parts)
  121.     if name == '.':
  122.         name = None
  123.     
  124.     return name
  125.  
  126.  
  127. def setup_testing_defaults(environ):
  128.     """Update 'environ' with trivial defaults for testing purposes
  129.  
  130.     This adds various parameters required for WSGI, including HTTP_HOST,
  131.     SERVER_NAME, SERVER_PORT, REQUEST_METHOD, SCRIPT_NAME, PATH_INFO,
  132.     and all of the wsgi.* variables.  It only supplies default values,
  133.     and does not replace any existing settings for these variables.
  134.  
  135.     This routine is intended to make it easier for unit tests of WSGI
  136.     servers and applications to set up dummy environments.  It should *not*
  137.     be used by actual WSGI servers or applications, since the data is fake!
  138.     """
  139.     environ.setdefault('SERVER_NAME', '127.0.0.1')
  140.     environ.setdefault('SERVER_PROTOCOL', 'HTTP/1.0')
  141.     environ.setdefault('HTTP_HOST', environ['SERVER_NAME'])
  142.     environ.setdefault('REQUEST_METHOD', 'GET')
  143.     if 'SCRIPT_NAME' not in environ and 'PATH_INFO' not in environ:
  144.         environ.setdefault('SCRIPT_NAME', '')
  145.         environ.setdefault('PATH_INFO', '/')
  146.     
  147.     environ.setdefault('wsgi.version', (1, 0))
  148.     environ.setdefault('wsgi.run_once', 0)
  149.     environ.setdefault('wsgi.multithread', 0)
  150.     environ.setdefault('wsgi.multiprocess', 0)
  151.     StringIO = StringIO
  152.     import StringIO
  153.     environ.setdefault('wsgi.input', StringIO(''))
  154.     environ.setdefault('wsgi.errors', StringIO())
  155.     environ.setdefault('wsgi.url_scheme', guess_scheme(environ))
  156.     if environ['wsgi.url_scheme'] == 'http':
  157.         environ.setdefault('SERVER_PORT', '80')
  158.     elif environ['wsgi.url_scheme'] == 'https':
  159.         environ.setdefault('SERVER_PORT', '443')
  160.     
  161.  
  162. _hoppish = {
  163.     'connection': 1,
  164.     'keep-alive': 1,
  165.     'proxy-authenticate': 1,
  166.     'proxy-authorization': 1,
  167.     'te': 1,
  168.     'trailers': 1,
  169.     'transfer-encoding': 1,
  170.     'upgrade': 1 }.has_key
  171.  
  172. def is_hop_by_hop(header_name):
  173.     '''Return true if \'header_name\' is an HTTP/1.1 "Hop-by-Hop" header'''
  174.     return _hoppish(header_name.lower())
  175.  
  176.